home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1995 April / Internet Tools.iso / dos_win / winsock / maillist / 94-02.Z / 94-02 / text0225.txt < prev    next >
Encoding:
Text File  |  1994-02-28  |  3.6 KB  |  94 lines

  1. In article <hennesse.49.00096512@chemdept.chem.ncsu.edu>,
  2. Glenn Hennessee <hennesse@chemdept.chem.ncsu.edu> wrote:
  3. >I don't know about the wsmptsrv problem but your problem with finger31 
  4. >probably is that the services (and maybe protocols, I'm not sure) file(s) 
  5. >aren't in the \etc directory.  I had this same problem with FTP's PC/TCP.  If 
  6. >you don't have a \etc directory (and I think it must be directly below the 
  7. >root directory i.e. c:\etc) create it and copy the services and protocols 
  8. >files into it.  It should work then.
  9. >Glenn
  10. >
  11.  
  12.   Thank you!  That was indeed my problem with finger31.
  13.  
  14.   However, I have still been unable to get wsmtpsrv to work.  I tried telneting
  15.   in to the smtp port and most of the time it GPF's in itself.  Some of the
  16.   time it works correctly.
  17.  
  18.   I looked for ws_gmail as someone suggested, but have not found it.
  19.  
  20.   I also have similar problems with Alun Jones' wftpd.  I am wondering if there
  21.   is a timing problem with the use of the 3com 3c509 card - I hear it is
  22.   strict on interrupt timing due to a small buffer.  Wftpd will lock the
  23.   system after a transfer and GPF (in itself) on an "ls" sometimes.  
  24.  
  25.   I also have my suspicions on FTP's winsock.  I "upgraded" to PCTCP 2.3 (from 
  26.   2.2 - retaining the same ini file(s) and winsock 1.1) and have lost the use 
  27.   of Winchat.  I now get the famous gethostbyname0 error.
  28.  
  29.   If ANYONE has tips/hints on ANY of the above, I would grately appreciate the
  30.   info.
  31.  
  32.   Thanks.
  33.  
  34. David
  35.  
  36. -- 
  37. E-mail: drdowns@brahms.udel.edu   | U  | David R. Downs  | Typos & misspellings
  38.           downs@cis.udel.edu      | of | Newark DE 19711 | are my specialties.
  39.        downs@freezer.cns.udel.edu |  D | (302) 837-1969  |
  40. Computer & Information Science ** My opinions don't reflect those of the U of D
  41. From news@bigblue.oit.unc.edu Mon Feb 21 22:57:26 1994
  42. Received: from bigblue.oit.unc.edu by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
  43.           id AA03057; Mon, 21 Feb 1994 19:27:16 -0500
  44. Received: by bigblue.oit.unc.edu (AIX 3.2/UCB 5.64/4.03)
  45.           id AA25608; Mon, 21 Feb 1994 19:13:36 -0500
  46. Received: from GATEWAY by bigblue with netnews
  47.     for winsock@sunsite.unc.edu (winsock@sunsite.unc.edu)
  48. To: winsock@sunsite.unc.edu
  49. Date: 21 Feb 1994 22:57:26 GMT
  50. From: sad@maine.stanford.edu (Scott Alan Dresser)
  51. Message-Id: <SAD.94Feb21145727@maine.stanford.edu>
  52. Organization: Stanford University
  53. Sender: ses
  54. References: <crkelly.14.005C3D75@mermaid.micro.umn.edu>
  55. Subject: Re: Xwin and Winsock
  56.  
  57.  
  58. In article <crkelly.14.005C3D75@mermaid.micro.umn.edu>
  59. crkelly@mermaid.micro.umn.edu (Colin R. Kelly) writes:
  60.  
  61.    Here's a question I'm hoping someone out there may be able to answer. I'm
  62.    using Trumpet Winsock and Xwin. To get Xwin to display on my PC, I
  63.    use the command: setenv DISPLAY my.ip.address:0 . When I dial up
  64.    for SLIP access, the IP address is dynamically allocated to me,
  65.    with the fourth number changing from one session to the next. Is
  66.    there any way I can set up a session and have the correct IP
  67.    address automatically placed into my setenv command (or any other
  68.    -display parameter for that matter)?
  69.  
  70. Colin,
  71.  
  72. I'm have the same setup here at school.  I have the following script
  73. in ~/bin/getdisp on my machine at campus:
  74.  
  75. ******************* cut here **********************
  76.  
  77. #!/bin/csh
  78. set disp = `last | grep <your_username> | head -1 | awk '{ print $3 }' `
  79. echo $disp:r":0"
  80.  
  81. ******************* cut here **********************
  82.  
  83. You may have to fudge with the fields and such to get this to work
  84. on a different machine (I'm on a DECStation).
  85.  
  86. When I startup XWin on my PC at home I use this command:
  87.  
  88.  xterm -display `/<your_home_directory>/bin/getdisp` &
  89.  
  90. Scott Dresser
  91. Stanford University
  92.  
  93.  
  94.